home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / utildsk.arc / DSKWATCH.DOC < prev    next >
Encoding:
Text File  |  1985-09-15  |  1.5 KB  |  37 lines

  1. DSKWATCH.COM - A program that reports on all disk i/o errors.
  2. Notes by Bernie Eisenberg, 213/391-0487. 9/15/85.
  3.  
  4. This program was published in PC Magazine.  The assembly language
  5. version was used, but it did not assemble correctly with the Microsoft
  6. MASM (presumably, it did assemble with IBM's macro assembler).  So, I
  7. made the corrections and this is the version that you have now.
  8.  
  9. To use it, just put the following line in your autoexec.bat file:
  10.  
  11. dskwatch
  12.  
  13. If you have set your path correctly, or if the .com file resides in the
  14. root directory, the program will load and become memory resident.
  15.  
  16. The program will report each and every i/o error that the bios
  17. encounters, while not interfering with normal DOS error reporting.  It
  18. will report on errors in the upper right corner of your screen.  The
  19. following errors are reported:
  20.  
  21.    Message          What the Message Means
  22.    -------          ----------------------
  23.  
  24. 1. No response          drive probably empty
  25. 2. Failed seek
  26. 3. NEC error
  27. 4. Bad CRC seen       intermittant error; during FORMAT, the sector will
  28.               be marked 'bad' by DOS
  29. 5. DMA overrun          NEC has to wait until the PC bus is available
  30. 6. Impos sector       NEC received request to i/o a non-existant sector
  31. 7. No addr mark       usually when NEC tries to read unformatted disk, or
  32.               when a foreign disk's tracks do not entirely coincide
  33. 8. W. protected       write protected disk
  34. 9. Err unknown          bad error, since NEC doesn't even know what happened
  35.  
  36. NEC is the i/o controller chip used in the PC. Good Luck.
  37.